home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Advisor / CD-ROM Advisor.iso / prodemo / demo / dylan.dxr / 00004.ls < prev    next >
Encoding:
Text File  |  1995-09-13  |  315 b   |  10 lines

  1. on enterFrame
  2.   global gCuesForVoice, gLabelsForVoiceCues, gCountOfCues, gPreTicksForCue, gNextCueIndex
  3.   if gNextCueIndex <= gCountOfCues then
  4.     repeat while the timer <= (getAt(gCuesForVoice, gNextCueIndex) - gPreTicksForCue)
  5.       nothing()
  6.     end repeat
  7.   end if
  8.   set gNextCueIndex to gNextCueIndex + 1
  9. end
  10.